home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1999 July: Technology Seed / ADC Seed CD - July 1999.toast / Carbon SDK 1.0d10c3 / Sample Code / SimpleText / PICTFile.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-05-04  |  823 b   |  42 lines  |  [TEXT/CWIE]

  1. /*
  2.     File:        PICTFile.h
  3.  
  4.     Contains:    header for pict file support in SimpleText
  5.  
  6.     Written by:    Tom Dowdy
  7.  
  8.     Copyright:    © 1993, 1995, 1997 by Apple Computer, Inc., all rights reserved.
  9.  
  10.     Change History (most recent first):
  11.  
  12.     $Log: PICTFile.h,v $
  13.     Revision 1.1.1.1  1998/03/18 22:56:11  ivory
  14.     Initial checkin of SimpleText.
  15.  
  16.         
  17.         2     9/30/97 6:23 PM Sam Bushell
  18.         Added isQuickTimeImageFile.
  19.         
  20.         1     7/28/97 11:19 AM Duane Byram
  21.         first added to Source Safe project
  22.  
  23.          <1>     8/21/95    TD        First checked in.
  24.  
  25. */
  26.  
  27. #include "SimpleText.h"
  28.  
  29. #ifndef REZ
  30.     struct PICTDataRecord
  31.         {
  32.         WindowDataRecord        w;
  33.         
  34.         Boolean                    isQuickTimeImageFile;
  35.         Rect                    pictureRectangle;
  36.         PicHandle                cacheHandle;
  37.         Rect                    selectionRectangle;
  38.         short                    patternPhase;
  39.         };
  40.     typedef struct PICTDataRecord PICTDataRecord, *PICTDataPtr;    
  41. #endif
  42.